데이터 구조 계열 데이터 구조 (10) 체인 대기 열의 기본 조작 - 입 대기 열, 출 대기 열, 대기 열 이 비어 있 는 지 판단 // #include using namespace std; // struct Node { int data; struct Node *next; }; // struct queue { struct Node * front; struct Node *rear; }; // void initQueue(struct queue &Q) { Q.front = new Node(); Q.rear = Q.front; ... 데이터 구조 계열
데이터 구조 (10) 체인 대기 열의 기본 조작 - 입 대기 열, 출 대기 열, 대기 열 이 비어 있 는 지 판단 // #include using namespace std; // struct Node { int data; struct Node *next; }; // struct queue { struct Node * front; struct Node *rear; }; // void initQueue(struct queue &Q) { Q.front = new Node(); Q.rear = Q.front; ... 데이터 구조 계열